home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Programming / AmigaTalk / ARexxScripts / ATalkCommands.rexx next >
OS/2 REXX Batch file  |  2000-05-07  |  841b  |  39 lines

  1. /****h* ATalkCommands.rexx *****************************************
  2. *
  3. * NAME
  4. *    ATalkCommands.rexx
  5. *
  6. * DESCRIPTION
  7. *    Example file that shows the ARexx commands recognized by 
  8. *    the AmigaTalk system.
  9. ********************************************************************
  10. *
  11. */
  12.  
  13. Options FailAt 5
  14.  
  15. if ~show( 'l', "rexxsupport.library" ) then do
  16.    check = addlib( 'rexxsupport.library', 0, -30, 0 )
  17. end
  18.  
  19. ADDRESS "AmigaTalk_Rexx"
  20.  
  21. Do
  22.  
  23.    'Quit'
  24.  
  25. /*
  26.    rval = 'GetClassListType'
  27.    rval = 'PlaceCodesInFile filename classname methodname'
  28.    rval = 'PurgeClass classname'
  29.    rval = 'ReloadClass tempfilename'
  30.    rval = 'ReloadMethod filename classname methodname'
  31.    rval = 'AddClass filename classname'
  32.    rval = 'AddMethod filename classname methodname'
  33.    str  = 'GetError errnum'
  34.  
  35.    filename = 'GetClassFileName classname' 
  36. */
  37.  
  38. RETURN 
  39.